discord.jsのフレームワーク discord.js-noobsを作った話
インストール方法
$ npm i discord.js-noobs@latest
サンプル的な
code:js
const { Client } = require("discord.js-noobs");
const client = new Client({ prefixes: "!", token: "token here" }); client.command("ping", (msg) => {
msg.reply("pong!");
})
.command("hello", (msg, args) => {
msg.reply(hello ${args.join(" ")});
});
後書き
機能を一新しました!